ArraySet(array, start_pos, end_pos, value)In a one-dimensional array, sets the elements in a specified range to the specified value. Useful in initializing an array after a call to ArrayNew. Returns a Boolean TRUE on successful completion.
Name of the array you want to change.
Starting position in the specified array.
Ending position in the specified array. If this value exceeds the array length, elements are accordingly added to the array.
The value you want to add to the range of elements in the specified array.